c4eb2da79c473e18f5b4063a28da1db7785d1ef2,jetty-util/src/test/java/org/eclipse/jetty/util/resource/FileSystemResourceTest.java,FileSystemResourceTest,testNonExistantSymlink,#,564

Before Change


    @Test
    public void testNonExistantSymlink() throws Exception
    {
        File dir = testdir.getDir();
        
        Path foo = new File(dir, "foo").toPath();
        Path bar = new File(dir, "bar").toPath();
        
        try
        {

After Change


    @Test
    public void testNonExistantSymlink() throws Exception
    {
        Path dir = testdir.getDir().toPath().normalize().toRealPath();
        Files.createDirectories(dir);
        
        Path foo = dir.resolve("foo");
        Path bar = dir.resolve("bar");
        
        try
        {